Interval Methods: An Introduction

نویسندگان

  • Luke E. K. Achenie
  • Vladik Kreinovich
  • Kaj Madsen
چکیده

This chapter contains selected papers presented at the Minisymposium on Interval Methods of the PARA’04 Workshop “State-ofthe-Art in Scientific Computing”. The emphasis of the workshop was on high-performance computing (HPC). The ongoing development of ever more advanced computers provides the potential for solving increasingly difficult computational problems. However, given the complexity of modern computer architectures, the task of realizing this potential needs careful attention. A main concern of HPC is the development of software that optimizes the performance of a given computer. An important characteristic of the computer performance in scientific computing is the accuracy of the computation results. Often, we can estimate this accuracy by using traditional statistical techniques. However, in many practical situations, we do not know the probability distributions of different measurement, estimation, and/or roundoff errors, we only know estimates of the upper bounds on the corresponding measurement errors, i.e., we only know an interval of possible values of each such error. The papers from the following chapter contain the description of the corresponding “interval computation” techniques, and the applications of these techniques to various problems of scientific computing. Why data processing? In many real-life situations, we are interested in the value of a physical quantity y that is difficult or impossible to measure directly. Examples of such quantities are the distance to a star and the amount of oil in a given well. Since we cannot measure y directly, a natural idea is to measure y indirectly. Specifically, we find some easier-to-measure quantities x1, . . . , xn which are related to y by a known relation y = f(x1, . . . , xn); this relation may be a simple functional transformation, or complex algorithm (e.g., for the amount of oil, numerical solution to an inverse problem). Then, to estimate y, we first measure the values of the quantities x1, . . . , xn, and then we use the results x̃1, . . . , x̃n of these measurements to to compute an estimate ỹ for y as ỹ = f(x̃1, . . . , x̃n). For example, to find the resistance R, we measure current I and voltage V , and then use the known relation R = V/I to estimate resistance as R̃ = Ṽ /Ĩ. In this example, the relation between xi and y is known exactly; in many practical situations, we only known an approximate relation y ≈ f̃(x1, . . . , xn) 2 L. Achenie, V. Kreinovich, and K. Madsen between xi and y. In such situations, the estimate ỹ for y is computed as ỹ = f̃(x̃1, . . . , x̃n). Computing an estimate for y based on the results of direct measurements is called data processing; data processing is the main reason why computers were invented in the first place, and data processing is still one of the main uses of computers as number crunching devices. Why interval computations? From computing to probabilities to intervals. Measurement are never 100% accurate, so in reality, the actual value xi of i-th measured quantity can differ from the measurement result x̃i. Because of these measurement errors ∆xi def = x̃i−xi, the result ỹ = f(x̃1, . . . , x̃n) of data processing is, in general, different from the actual value y = f(x1, . . . , xn) of the desired quantity y [6]. It is desirable to describe the error ∆y def = ỹ−y of the result of data processing. To do that, we must have some information about the errors of direct measurements. What do we know about the errors ∆xi of direct measurements? First, the manufacturer of the measuring instrument must supply us with an estimate of the upper bound ∆i on the measurement error. (If no such upper bound is supplied, this means that no accuracy is guaranteed, and the corresponding “measuring instrument” is practically useless.) In this case, once we performed a measurement and got a measurement result x̃i, we know that the actual (unknown) value xi of the measured quantity belongs to the interval xi = [xi, xi], where xi = x̃i −∆i and xi = x̃i + ∆i. In many practical situations, we not only know the interval [−∆i, ∆i] of possible values of the measurement error; we also know the probability of different values ∆xi within this interval. This knowledge underlies the traditional engineering approach to estimating the error of indirect measurement, in which we assume that we know the probability distributions for measurement errors ∆xi. In practice, we can determine the desired probabilities of different values of ∆xi by comparing the results of measuring with this instrument with the results of measuring the same quantity by a standard (much more accurate) measuring instrument. Since the standard measuring instrument is much more accurate than the current one, the difference between these two measurement results is practically equal to the measurement error; thus, the empirical distribution of this difference is close to the desired probability distribution for measurement error. There are two cases, however, when this determination is not done: – First is the case of cutting-edge measurements, e.g., measurements in fundamental science. When a Hubble telescope detects the light from a distant galaxy, there is no “standard” (much more accurate) telescope floating nearby that we can use to calibrate the Hubble: the Hubble telescope is the best we have. – The second case is the case of measurements on the shop floor. In this case, in principle, every sensor can be thoroughly calibrated, but sensor calibration Interval Methods: An Introduction 3 is so costly – usually costing ten times more than the sensor itself – that manufacturers rarely do it. In both cases, we have no information about the probabilities of ∆xi; the only information we have is an estimate on the upper bound on the measurement error. In this case, after we performed a measurement and got a measurement result x̃i, the only information that we have about the actual value xi of the measured quantity is that it belongs to the interval xi = [x̃i −∆i, x̃i + ∆i]. In such situations, the only information that we have about the (unknown) actual value of y = f(x1, . . . , xn) is that y belongs to the range y = [y, y] of the function f over the box x1 × . . .× xn: y = [y, y] = {f(x1, . . . , xn) |x1 ∈ x1, . . . , xn ∈ xn}. The process of computing this interval range based on the input intervals xi is called interval computations; see, e.g., [1–3, 5]. Comment. In addition to measurement errors, we also have round-off errors and – in case some parameters are estimated by experts – also uncertainty of expert estimates. Interval computations techniques: brief reminder. Historically the first method for computing the enclosure for the range is the method which is sometimes called “straightforward” interval computations. This method is based on the fact that inside the computer, every algorithm consists of elementary operations (arithmetic operations, min, max, etc.). For each elementary operation f(a, b), if we know the intervals a and b for a and b, we can compute the exact range f(a,b). The corresponding formulas form the so-called interval arithmetic. For example, [a, a] + [b, b] = [a + b, a + b]; [a, a]− [b, b] = [a− b, a− b]; [a, a] · [b, b] = [min(a · b, a · b, a · b, a · b), max(a · b, a · b, a · b, a · b)]. In straightforward interval computations, we repeat the computations forming the program f step-by-step, replacing each operation with real numbers by the corresponding operation of interval arithmetic. It is known that, as a result, we get an enclosure Y ⊇ y for the desired range. In some cases, this enclosure is exact. In more complex cases (see examples below), the enclosure has excess width. There exist more sophisticated techniques for producing a narrower enclosure, e.g., a centered form method. However, for each of these techniques, there are cases when we get an excess width. Reason: as shown in [4, 7], the problem of computing the exact range is known to be NP-hard even for polynomial functions f(x1, . . . , xn) (actually, even for quadratic functions f). Applications of interval techniques. The ultimate objective of interval computations has always been to apply these methods to practical problems. The 4 L. Achenie, V. Kreinovich, and K. Madsen workshop provided us with a unique opportunity to promote collaboration between interval researchers and researcher interested in applications. This chapter contains extended versions of selected papers presented at the interval Minisymposium of PARA’04. Acknowledgments. First of all, we would like to thank the organizers of PARA’04, especially Jerzy Wasniewski and Kaj Madsen (Technical University of Denmark) and Jack Dongarra (University of Tennessee and Oak Ridge National Laboratory), for their wonderful organization, their enormous support and help. We also want to thank the anonymous referees for their help in reviewing the papers, all the attendees of the minisymposium for their fruitful discussions, and, of course, we want to thank all the authors of the papers, for their hard work and exciting results.

برای دانلود متن کامل این مقاله و بیش از 32 میلیون مقاله دیگر ابتدا ثبت نام کنید

ثبت نام

اگر عضو سایت هستید لطفا وارد حساب کاربری خود شوید

منابع مشابه

Comparison of the dynamics of consumption oxygen in the recovery period after two maximum exercise continuous and interval in female basketball players

Introduction: The dynamics of oxygen after exercise is considered as an important indicator of fitness and cardiovascular health. The objective of this study was to compare the dynamics of oxygen consumption in the recovery period after two maximum exercise continuous and interval in female basketball players. Methods: In this study,7 women basketball players were selected  and in three separat...

متن کامل

بررسی عوامل مؤثر بر زایمانهای با فاصله کمتر و بیشتر از دو سال در زنان مراجعه ‏کننده به مراکز بهداشتی درمانی شهر زاهدان سالهای 77 - 76

This was an analytical study that was conducted to determine effective factors on childbirth with an interval of less or more than two years in health clinics of Zahedan in 1997-1998.The samples consisted of 400 women with a childbirth interval of less than two years and 800 women with a childbirth interval of more than two years. The women with the following criteria were surveyed: gestationa...

متن کامل

An introduction to interval-based constraint processing

Constraint programming is often associated with solving problems over finite domains. Many applications in engineering, CAD and design, however, require solving problems over continuous (real-valued) domains. While simple constraint solvers can solve linear constraints with the inaccuracy of floating-point arithmetic, methods based on interval arithmetic allow exact (interval) solutions over a ...

متن کامل

Interval linear regression

‎In this paper‎, ‎we have studied the analysis an interval linear regression model for fuzzy data‎. ‎In section one‎, ‎we have introduced the concepts required in this thesis and then we illustrated linear regression fuzzy sets and some primary definitions‎. ‎In section two‎, ‎we have introduced various methods of interval linear regression analysis‎. ‎In section three‎, ‎we have implemented nu...

متن کامل

Effect of one Bout Continuous Versus Intermittent Aerobic Exercise on Plasma Levels of Intercellular Adhesion Molecules 1 and Vascular Cell Adhesion Molecules 1 in Patients with Coronary Heart Disease

Introduction: Adhesion molecules play an important role in the pathogenesis of atherosclerosis and the type of training may affect the response to these indicators. Therefore, the purpose of the present study was to investigate the effect of a continuous versus interval aerobic training session on plasma levels of intercellular adhesion molecules 1 (ICAM-1) and vascular cell adhesion molecules ...

متن کامل

Effect of Interval Training on the Expression of Mesenchymal Biomarker Vimentin and Tumor Volume in Mice with Breast Cancer

Introduction Many deaths from cancer are due to metastases, a process which involves the epithelial-mesenchymal transition (EMT). On the other hand, regular exercise plays an important role in inhibiting the progression of breast cancer. Therefore, the purpose of this study was to investigate the influence of interval training on the expression of VIM, the gene encoding for EMT biomarker viment...

متن کامل

ذخیره در منابع من


  با ذخیره ی این منبع در منابع من، دسترسی به آن را برای استفاده های بعدی آسان تر کنید

برای دانلود متن کامل این مقاله و بیش از 32 میلیون مقاله دیگر ابتدا ثبت نام کنید

ثبت نام

اگر عضو سایت هستید لطفا وارد حساب کاربری خود شوید

عنوان ژورنال:

دوره   شماره 

صفحات  -

تاریخ انتشار 2004